cURL
curl --request GET \ --url https://api.xpander.ai/v1/agents \ --header 'x-api-key: <api-key>'
{ "items": [ { "name": "<string>", "organization_id": "<string>", "id": "<string>", "description": "<string>", "icon": "<string>", "status": "DRAFT", "deployment_type": "serverless", "created_at": "2023-11-07T05:31:56Z", "instructions": { "role": [], "goal": [], "general": "" }, "model_provider": "openai", "llm_api_base": "<string>", "model_name": "<string>", "framework": "<string>", "using_nemo": true, "is_coordinate_mode": true, "has_pending_changes": true } ], "total": 123, "page": 123, "per_page": 123, "total_pages": 123 }
Retrieve a paginated list of AI agents with minimal information (ID, name, status)
Show Agent Object
curl -X GET -H "x-api-key: YOUR_API_KEY" \ "https://api.xpander.ai/v1/agents?page=1&per_page=2"
{ "items": [ { "id": "0045cf07-8af6-4c69-8d13-0a13c631a5d0", "name": "DevOps AI Agent", "icon": "🚀", "status": "ACTIVE", "organization_id": "91fbe9bc-35b3-41e8-b59d-922fb5a0f031", "deployment_type": "container", "created_at": "2025-08-22T01:45:30.341088Z", "instructions": { "role": [ "users can't access your files so upload the files and use markdwon when comment with public link. ", "Don't stop until complete all tools are valid.", "generate_diagram can fail , retry with different code " ], "goal": [], "general": "AI DevOps" }, "model_provider": "openai", "llm_api_base": null, "model_name": "gpt-4.1", "framework": "agno", "using_nemo": false, "is_coordinate_mode": false }, { "id": "11cf5b70-7743-4d5f-a739-3f94fef8ec0f", "name": "Test Agent - DELETE ME", "icon": "🚀", "status": "ACTIVE", "organization_id": "91fbe9bc-35b3-41e8-b59d-922fb5a0f031", "deployment_type": "serverless", "created_at": "2025-11-06T15:41:14.673977Z", "instructions": { "role": [], "goal": [], "general": "" }, "model_provider": "openai", "llm_api_base": null, "model_name": "gpt-4.1", "framework": "agno", "using_nemo": false, "is_coordinate_mode": false } ], "total": 19, "page": 1, "per_page": 2, "total_pages": 10 }
API Key for authentication
Page number (starting from 1)
x >= 1
Items per page (max 50)
1 <= x <= 50
Successful Response
Show child attributes
Was this page helpful?